home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / cgazv4n2.zip / MSRCH.H < prev    next >
C/C++ Source or Header  |  1989-08-20  |  514b  |  18 lines

  1. /***************************************************************
  2.  * File: msrch.h
  3.  * Author: John Rex
  4.  * Purpose: header file for access to multi-search routines
  5.  *          of msrch.c 
  6.  **************************************************************/
  7.  
  8. /* linked list structure for keywords */
  9. struct kword {
  10.     unsigned char *word;
  11.     struct kword *next;
  12. };
  13.  
  14. /* the routines */
  15. void msrch_init(struct kword *);
  16. void msrch_go(int (*msrch_data) (), void (*msrch_signal) (char *));
  17. void msrch_end(void);
  18.